home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000904_black@vidalia.unh.edu_Mon Sep 5 06:28:03 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  3KB

  1. Received: from unh.edu by cs.umb.edu with SMTP id AA14483
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Mon, 5 Sep 1994 13:43:27 -0400
  3. Received: from vidalia.unh.edu by unh.edu with SMTP id AA13390
  4.   (5.67b+/IDA-1.5 for <@unh.edu:tex-k@cs.umb.edu>); Mon, 5 Sep 1994 10:30:08 -0400
  5. Received: by vidalia.unh.edu (931110.SGI/930416.SGI)
  6.     for @unh.edu:tex-k@cs.umb.edu id AA01807; Mon, 5 Sep 94 10:28:03 -0400
  7. Date: Mon, 5 Sep 94 10:28:03 -0400
  8. From: Kelly.Black@unh.edu (Kelly J Black)
  9. Message-Id: <9409051428.AA01807@vidalia.unh.edu>
  10. To: tex-k@cs.umb.edu
  11. Subject: roblem with install on SGI's
  12. Cc: black@vidalia.unh.edu
  13.  
  14.  
  15. I recently downloaded the files to build tex and latex and 
  16. had some problems with the install command.  Under SGI's
  17. IRIX 5.2, the command "install -c" is not supported.  I
  18. had to go into each subdirectory and change the install
  19. commands so that it read:
  20.  
  21. install -F (directory) (name)
  22.  
  23. For example, in the makefile under web2c the file came
  24. with these lines:
  25.  
  26. INSTALL = /sbin/install -c
  27. <stuff deleted>
  28.        for f in $(fmts); do                                            \
  29.           $(INSTALL_DATA) tex/$$f $(fmtdir)/$$f;                        \
  30.         done
  31.  
  32. I had to change it to the following:
  33.  
  34. INSTALL = /sbin/install -F
  35. <stuff deleted>
  36.        for f in $(fmts); do                                            \
  37.           $(INSTALL_DATA) $(fmtdir)  $$f;                        \
  38.         done
  39.  
  40. This change had to made in every Makefile.
  41.  
  42. Also, I have one question.  I have been able to compile
  43. and install everything okay, except now when I run latex 
  44. this is what happens:
  45.  
  46. vidalia 7% latex try
  47. This is TeX, Version 3.1415 (C version 6.1)
  48. I can't find the default format file!
  49.  
  50. I looked through the file kpathsea/path.h and it looks
  51. like my format files are where they should be.  In
  52. fact they are in their default place, /usr/local/texmf/ini.
  53. Where in the heck is the file looking for the format files?
  54. I have even tried setting the environment variable, TEXFORMATS,
  55. but it has been to no avail.  What is going on here?
  56.  
  57. Sincerely,
  58. Kel
  59.  
  60. .
  61.  
  62.  
  63. ------------------------------------------------------------------
  64. Kelly Black 
  65. Department of Mathematics
  66. University of New Hampshire
  67. e-mail: black@vidalia.unh.edu
  68. -------------------------------------------------------------------
  69. It may be true that people who are merely mathematicians
  70. have certain specific shortcomings; however, that is not
  71. the fault of mathematics, but is true of every exclusive 
  72. occupation.     - Carl Friedrich Gauss
  73.  
  74.